home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
newsgroups
/
misc.20030409-20031118
/
000179_KentMartin@TexasHealth.org_Thu Jun 19 16:38:41 EDT 2003.msg
< prev
next >
Wrap
Text File
|
2003-11-18
|
2KB
|
44 lines
Article: 14408 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!panix!newsfeed!news.maxwell.syr.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
From: KentMartin@TexasHealth.org (Kent W. Martin)
Newsgroups: comp.protocols.kermit.misc
Subject: Access to all lines of an FTP multi-line reply
Date: 19 Jun 2003 13:32:49 -0700
Organization: http://groups.google.com/
Lines: 26
Message-ID: <b97068c6.0306191232.37ef0ff0@posting.google.com>
NNTP-Posting-Host: 216.61.195.1
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
X-Trace: posting.google.com 1056054770 4849 127.0.0.1 (19 Jun 2003 20:32:50 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: 19 Jun 2003 20:32:50 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14408
I'm using the FTP client in Kermit 95 2.1.3 on Windows XP. The FTP
server to which I'm connected is issuing multi-line replies:
PUT T1H4CPPZ (text) (32760092 bytes)---> PASV
227 Entering Passive Mode (167,99,56,239,135,132).
---> STOR T1H4CPPZ
150 Sending file to member T1H4CPPZ in file T1H4CPPZ in library
DOWNLOADA.
426-Records written to file T1H4CPPZ in library DOWNLOADA have been
truncated. Data in file may not be valid.
426 Data transfer ended.
: MESSAGE: Data transfer ended.
According to section 4.2 (FTP replies) at
ftp://ftp.isi.edu/in-notes/rfc959.txt the format of this multi-line
reply is correct.
In K95 \v(ftp_code) is correctly getting set to 426. However,
\v(ftp_message) is getting set to "Data transfer ended.". How can I
access the "Records written to file yadda, yadda, yadda" part of the
message?
BTW, I know why the server is issuing the message about the file
having been truncated. That's not what I'm trying to fix.
Kent